home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / PERL.SPK / Perl5001 / pl / ChopExt < prev   
Text File  |  1996-03-04  |  92b  |  6 lines

  1. foreach $name ( <*/*> ) {
  2.     @newname = split(m@/@,$name);
  3.     rename ( $name, @newname[0] );
  4. }
  5.  
  6.